home *** CD-ROM | disk | FTP | other *** search
/ FishMarket 1.0 / FishMarket v1.0.iso / fishies / 426-450 / disk_443 / dice / dice.lzh / include / lib / version.h < prev    next >
C/C++ Source or Header  |  1991-01-13  |  488b  |  23 lines

  1.  
  2. /*
  3.  *  LIB/VERSION.H
  4.  *
  5.  *  (c)Copyright 1990, Matthew Dillon, All Rights Reserved
  6.  */
  7.  
  8. #ifndef _LIB_VERSION_H
  9. #define _LIB_VERSION_H
  10.  
  11. #define VERSION "V2.06"
  12.  
  13. #define DCOPYRIGHT static char *DCopyright = "(c)Copyright 1990 by Matthew Dillon, All Rights Reserved"
  14.  
  15. #ifdef REGISTERED
  16. #define IDENT(file,subv)   static char *Ident = "@($)" file " " VERSION subv "R " __DATE__
  17. #else
  18. #define IDENT(file,subv)   static char *Ident = "@($)" file " " VERSION subv "  " __DATE__
  19. #endif
  20.  
  21.  
  22. #endif
  23.